home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cpptutor.arc / PERSON.CPP < prev    next >
Text File  |  1991-04-28  |  325b  |  12 lines

  1.                                      // Chapter 11 - Program 2
  2. #include "iostream.h"
  3. #include "person.hpp"
  4.  
  5.             // This method should never be called.  If it is ever
  6.             // called, it is considered an error.
  7. void
  8. person::display(void)
  9. {
  10.    cout << "person::display - missing subclass method\n";
  11. }
  12.